home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 May / Disc 1 / PCU0503CD1.iso / resource / network / files / lannetsc.exe / {app} / Sample LANS scripts / string_index_test.lans < prev    next >
Encoding:
Text File  |  2002-01-07  |  194 b   |  13 lines

  1. # string index test
  2. string   cool
  3.  
  4. cool = dup("x", 20)
  5. cool[1] = ord("a")
  6. cool[2] = ord("b")
  7. cool[3] = ord("3")
  8.  
  9. echo(cool)
  10. echo(cool[1])
  11. echo(cool[2])
  12. echo(strtoint(cool[3]) * 100)
  13.